home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / News / Alexandra.0.82 / Source / MatrixSet.h < prev    next >
Encoding:
Text File  |  1996-01-30  |  497 b   |  31 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface MatrixSet:Object
  5. {
  6.    id theArticleViewControl;
  7.    id nntpServer;
  8.  
  9.    id myMatrix;
  10.    id myMList;
  11.  
  12.    id currentSelection;
  13.    int numSelCells;
  14.  
  15.    SEL unselAction;
  16.    id unselTarget;
  17. }
  18.  
  19. - init;
  20. - theMatrix;
  21. - (List *)matrixList;
  22. - (int)numSelCells;
  23. - redisplayMatrix;
  24. - currentSelection;
  25. - sync;
  26. - syncAndReturnList:(BOOL)flag;
  27. - (const char *)stringValueForCellAt:(int)index;
  28. - (int)grep:(const char *)pattern regexpr:(BOOL)regexpr cases:(BOOL)cases;
  29.  
  30. @end
  31.